exception Exception
Exception is the parent type of all exceptions.
| Modifiers | Return Types | Method and Description |
|---|---|---|
public |
() |
create()Creates an |
public |
() |
create(String message)Creates an |
| Modifiers | Return Types | Method and Description |
|---|---|---|
public |
() |
destroy() |
| Modifiers | Return Types | Method and Description |
|---|---|---|
public readonly |
(Exception) |
copy(AddressMap addresses) |
public readonly |
(String) |
toString()Returns a |
| Modifiers | Return Types | Method and Description |
|---|---|---|
public readonly get |
(immutable String) |
message() |
public create() => ()
Creates an Exception with no message.
public create(String message) => ()
Creates an Exception with an explanatory message.
message - message explaining the exception
public destroy() => ()
public readonly copy(AddressMap addresses) => (Exception)
public readonly toString() => (String)
Returns a String representation of the exception, incorporating the exception's message if present.
String representation of the exception
public readonly get message() => (immutable String)